encoding/binary.bigEndian.Uint32 (method, view implemented interface methods)
14 uses
encoding/binary (current package)
binary.go#L163: func (bigEndian) Uint32(b []byte) uint32 {
github.com/google/uuid
dce.go#L67: return binary.BigEndian.Uint32(uuid[0:4])
time.go#L122: time := int64(binary.BigEndian.Uint32(uuid[0:4]))
net/http
h2_bundle.go#L1650: StreamID: binary.BigEndian.Uint32(buf[5:]) & (1<<31 - 1),
h2_bundle.go#L2185: Val: binary.BigEndian.Uint32(buf[i*6+2 : i*6+6]),
h2_bundle.go#L2321: LastStreamID: binary.BigEndian.Uint32(p[:4]) & (1<<31 - 1),
h2_bundle.go#L2322: ErrCode: http2ErrCode(binary.BigEndian.Uint32(p[4:8])),
h2_bundle.go#L2368: inc := binary.BigEndian.Uint32(p[:4]) & 0x7fffffff // mask off high reserved bit
h2_bundle.go#L2582: v := binary.BigEndian.Uint32(payload[:4])
h2_bundle.go#L2631: return &http2RSTStreamFrame{fh, http2ErrCode(binary.BigEndian.Uint32(p[:4]))}, nil
h2_bundle.go#L2817: return p[4:], binary.BigEndian.Uint32(p[:4]), nil
sniff.go#L271: boxSize := int(binary.BigEndian.Uint32(data[:4]))
vendor/golang.org/x/text/unicode/norm
forminfo.go#L189: key := binary.BigEndian.Uint32(buf[:4])
forminfo.go#L190: val := binary.BigEndian.Uint32(buf[4:])
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |